home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / getw.c < prev    next >
C/C++ Source or Header  |  1988-06-13  |  1KB  |  57 lines

  1. /* 
  2.  * getw.c --
  3.  *
  4.  *    Source code for the "getw" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: getw.c,v 1.1 88/06/13 10:00:29 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * getw --
  26.  *
  27.  *    Read an integer word from a stream, in order of increasing
  28.  *    byte number.  This procedure should be avoided like the
  29.  *    plague, since it's byte-order sensitive.
  30.  *
  31.  * Results:
  32.  *    The return value is the word read, or EOF if there was an
  33.  *    error (unfortunately, EOF looks just like an integer, so
  34.  *    the caller really has to call ferror).
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. getw(stream)
  44.     register FILE *stream;        /* Stream from which to read. */
  45. {
  46.     int result, i;
  47.     register char *p;
  48.  
  49.     for (i = 0, p = (char *) &result; i < sizeof(int); i++, p++) {
  50.     *p = getc(stream);
  51.     }
  52.     if (feof(stream)) {
  53.     return EOF;
  54.     }
  55.     return result;
  56. }
  57.